home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / misc / avmnfaxsrc1_33.lha / defs.h < prev    next >
C/C++ Source or Header  |  1994-05-25  |  624b  |  33 lines

  1. /* $Id: defs.h,v 1.2 1993/06/11 16:29:21 Rhialto Exp $
  2.  * $Log: defs.h,v $
  3.  * Revision 1.2  1993/06/11  16:29:21  Rhialto
  4.  * First real RCS checkin
  5.  *
  6.  */
  7.  
  8. /*
  9.  *  DEFS.H
  10.  */
  11.  
  12. #include <exec/types.h>
  13. #include <exec/nodes.h>
  14. #include <exec/lists.h>
  15. #include <exec/memory.h>
  16. #include <devices/printer.h>
  17. #include <devices/prtbase.h>
  18. #include <devices/prtgfx.h>
  19.  
  20. #include <clib/exec_protos.h>
  21.  
  22. #define Prototype extern
  23.  
  24. typedef struct PrtInfo    PrtInfo;
  25. typedef struct PrinterData PrinterData;
  26. typedef struct PrinterExtendedData PrinterExtendedData;
  27.  
  28. #ifdef DEBUG
  29. # include "syslog.h"
  30. #else
  31. # define debug(x)   /* empty */
  32. #endif
  33.